home *** CD-ROM | disk | FTP | other *** search
- /* Internal memory bookkeeping information from the MiNTlibs'
- malloc()/realloc()/free() routines. This will need to change if the
- MiNTlibs routines change; not likely, but you never know... */
-
- struct mem_chunk
- {
- long valid;
- #define VAL_FREE 0xf4ee0abcL
- #define VAL_ALLOC 0xa11c0abcL
-
- struct mem_chunk *next;
- unsigned long size;
- };
-
- /* linked list of free blocks */
-
- extern struct mem_chunk _mchunk_free_list;
-